Attribute | Description (where applicable) |
Aggregation of measures is based on SUM if not explicitly noted.
This section describes the basic measures in the cube. These are either measures defined in the core Information Source, in the model itself or in the ETL process. The columns have the following meaning:
Measure | Calculated Y/N | Contains Time Intelligence Y/N | Definition/Note (where applicable) | Aggregation Type | Hidden Y/N | Tabular Expression |
Has an Injury/ Illness | Y | N | Count on Incident Cases Reference numbers with more than one incident rows. | N | COUNTROWS( FILTER (SUMMARIZE('INCIDENT ANALYSIS','INCIDENT ANALYSIS'[Incident Case Reference No],"@COUNT_INCIDENTS",COUNT('INCIDENT ANALYSIS'[Incident Case Reference No])), [@COUNT_INCIDENTS]>1) ) | |
No Injury/ Illness | Y | N | Count on Incident Cases Reference numbers with one incident row. | N | COUNTROWS( FILTER (SUMMARIZE('INCIDENT ANALYSIS','INCIDENT ANALYSIS'[Incident Case Reference No],"@COUNT_INCIDENTS",COUNT('INCIDENT ANALYSIS'[Incident Case Reference No])), [@COUNT_INCIDENTS]=1) ) | |
Count of Incidents | Y | N | Count incidents. | N | CALCULATE(COUNT('INCIDENT ANALYSIS'[INCIDENT_COUNT]), FILTER('INCIDENT ANALYSIS', 'INCIDENT ANALYSIS'[INCIDENT_COUNT] = 1)) | |
Count of Injured and Illness Persons | Y | N | Count of Incident Cases with Injury/Illness Reference No = 0. | N | CALCULATE(COUNT('INCIDENT ANALYSIS'[COUNT_INJURY_AND_ILLNESS]), FILTER('INCIDENT ANALYSIS', 'INCIDENT ANALYSIS'[Injury/ Illness Reference No] = 0)) | |
DAWC Days Away From Work Cases | Y | N | Count of Incident Cases with AWAY_FROM_WORK > 0. | N | IF(ISBLANK( IF( HASONEFILTER('REPORTING PERIOD'[Reporting Date]), 'INCIDENT ANALYSIS MEASURES'[DAWC Base] , 'INCIDENT ANALYSIS MEASURES'[DAWC YTD] )), 0, IF( HASONEFILTER('REPORTING PERIOD'[Reporting Date]), 'INCIDENT ANALYSIS MEASURES'[DAWC Base] , 'INCIDENT ANALYSIS MEASURES'[DAWC YTD]) ) | |
RWC Restricted Work Cases or Transfer to another job | Y | N | Count of Incident Cases with RESTRICTED_WORK > 0. | N | IF(ISBLANK( IF( HASONEFILTER('REPORTING PERIOD'[Reporting Date]), 'INCIDENT ANALYSIS MEASURES'[RWC Base] , 'INCIDENT ANALYSIS MEASURES'[RWC YTD] )), 0, IF( HASONEFILTER('REPORTING PERIOD'[Reporting Date]), 'INCIDENT ANALYSIS MEASURES'[RWC Base] , 'INCIDENT ANALYSIS MEASURES'[RWC YTD]) ) | |
Count of Injuries and Illnesses | Y | N | Count of Incident Cases with Injury/Illness Reference No not set to 0 or -1. | N | CALCULATE ( COUNT ( 'INCIDENT ANALYSIS'[COUNT_INJURY_AND_ILLNESS] ), FILTER ( 'INCIDENT ANALYSIS', NOT 'INCIDENT ANALYSIS'[Injury/ Illness Reference No] IN {0,-1} ) ) | |
Workdays Restricted | N | N | Sum RESTRICTED_WORK. | N | SUM('INCIDENT ANALYSIS'[RESTRICTED_WORK]) | |
MT Medical Treatment beyond first aid | Y | N | Count of Incident Cases with Hospital / Medical Institution as Medical Treatment. | N | IF(ISBLANK( IF( HASONEFILTER('REPORTING PERIOD'[Reporting Date]), 'INCIDENT ANALYSIS MEASURES'[MT Base] , 'INCIDENT ANALYSIS MEASURES'[MT YTD] )), 0, IF( HASONEFILTER('REPORTING PERIOD'[Reporting Date]), 'INCIDENT ANALYSIS MEASURES'[MT Base] , 'INCIDENT ANALYSIS MEASURES'[MT YTD]) ) | |
LC Loss of conciousness | Y | N | Count of Incident Cases with Loss of Consciousness = TRUE. | N | IF(ISBLANK( IF( HASONEFILTER('REPORTING PERIOD'[Reporting Date]), 'INCIDENT ANALYSIS MEASURES'[LC Base] , 'INCIDENT ANALYSIS MEASURES'[LC YTD] )), 0, IF( HASONEFILTER('REPORTING PERIOD'[Reporting Date]), 'INCIDENT ANALYSIS MEASURES'[LC Base] , 'INCIDENT ANALYSIS MEASURES'[LC YTD]) ) | |
Total Reportable Cases | Y | N | Count of Incident Cases where Reportable to External Body is set to "Reportable". | N | IF(ISBLANK( IF( HASONEFILTER('REPORTING PERIOD'[Reporting Date]), 'INCIDENT ANALYSIS MEASURES'[TRI Base] , 'INCIDENT ANALYSIS MEASURES'[TRI YTD] )), 0, IF( HASONEFILTER('REPORTING PERIOD'[Reporting Date]), 'INCIDENT ANALYSIS MEASURES'[TRI Base] , 'INCIDENT ANALYSIS MEASURES'[TRI YTD]) ) | |
Days lost due to DAWC | Y | N | Sum AWAY_FROM_WORK. | N | IF(ISBLANK( IF( HASONEFILTER('REPORTING PERIOD'[Reporting Date]), 'INCIDENT ANALYSIS MEASURES'[Days Lost Base] , 'INCIDENT ANALYSIS MEASURES'[Days Lost YTD] )), 0, IF( HASONEFILTER('REPORTING PERIOD'[Reporting Date]), 'INCIDENT ANALYSIS MEASURES'[Days Lost Base] , 'INCIDENT ANALYSIS MEASURES'[Days Lost YTD]) ) | |
ATLR Average Time Lost Rate | Y | N | Days Lost Base dvided by DAWC Base. | N | IF(ISBLANK( IF( HASONEFILTER('REPORTING PERIOD'[Reporting Date]), 'INCIDENT ANALYSIS MEASURES'[ATLR Base] , 'INCIDENT ANALYSIS MEASURES'[ATLR YTD] )), 0, IF( HASONEFILTER('REPORTING PERIOD'[Reporting Date]), 'INCIDENT ANALYSIS MEASURES'[ATLR Base] , 'INCIDENT ANALYSIS MEASURES'[ATLR YTD]) ) | |
DAWC Base | Y | N | Y | COUNTROWS( FILTER( SUMMARIZE('INCIDENT ANALYSIS', 'INCIDENT ANALYSIS'[Incident Case Reference No], "@AFW", SUM('INCIDENT ANALYSIS'[AWAY_FROM_WORK] ) ), [@AFW] > 0)) | ||
RWC Base | Y | N | Y | COUNTROWS( FILTER( SUMMARIZE('INCIDENT ANALYSIS', 'INCIDENT ANALYSIS'[Incident Case Reference No], "@RW", SUM('INCIDENT ANALYSIS'[RESTRICTED_WORK] ) ), [@RW] > 0) ) | ||
MT Base | Y | N | Y | COUNTROWS( FILTER( SUMMARIZE('INCIDENT ANALYSIS', 'INCIDENT ANALYSIS'[Incident Case Reference No], 'INCIDENT ANALYSIS'[Medical Treatment], "@Count", COUNT('INCIDENT ANALYSIS'[Incident Case Reference No])) , 'INCIDENT ANALYSIS'[Medical Treatment] = "Hospital / Medical Institution" ) ) | ||
LC Base | Y | N | Y | COUNTROWS( FILTER( SUMMARIZE('INCIDENT ANALYSIS', 'INCIDENT ANALYSIS'[Incident Case Reference No], 'INCIDENT ANALYSIS'[Loss of Consciousness], "@Count", COUNT('INCIDENT ANALYSIS'[Incident Case Reference No])) , 'INCIDENT ANALYSIS'[Loss of Consciousness] = "TRUE" ) ) | ||
TRI Base | Y | N | Y | COUNTROWS(FILTER('INCIDENT ANALYSIS', 'INCIDENT ANALYSIS'[INCIDENT_COUNT] = 1 && 'INCIDENT ANALYSIS'[Reportable to External Body] = "Reportable")) | ||
Days Lost Base | Y | N | Y | SUM('INCIDENT ANALYSIS'[AWAY_FROM_WORK]) | ||
ATLR Base | Y | N | Y | DIVIDE([Days Lost Base], [DAWC Base], BLANK()) |
Model Name | Product Area |
Incident Analysis |
The data source for this object is defined using IFS Developer Tool. The data source contains a number of transformations where the model reads data from the last step, i.e. the Data source view name (DW Source View Name).
Additional information can be found in the online documentation of Information Sources.
Model Table | DW Source view (SQL Server) | BI Access View | Referenced Information Source | Recommended Access Type |
INCIDENT ANALYSIS MEASURES | FACT_INCIDENT_CASE_TM | FACT_INCIDENT_CASE_BI | FACT_INCIDENT_CASE | On Line |